const crypto/tls.maxPlaintext
8 uses
crypto/tls (current package)
common.go#L60: maxPlaintext = 16384 // maximum plaintext payload length
conn.go#L411: if len(plaintext) > maxPlaintext+1 {
conn.go#L689: if len(data) > maxPlaintext {
conn.go#L893: return maxPlaintext
conn.go#L897: return maxPlaintext
conn.go#L928: return maxPlaintext // avoid overflow in multiply below
conn.go#L932: if n > maxPlaintext {
conn.go#L933: n = maxPlaintext
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |